home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Linux LiveCD / GeeXboX 1.0 EN / geexbox-1.0-en.i386.iso / GEEXBOX / etc / init.d / 36_dxr3 < prev    next >
Text File  |  2006-06-21  |  416b  |  22 lines

  1. #!/bin/sh
  2. #
  3. # setup tv cards
  4. #
  5. # runlevels: geexbox, debug, install
  6.  
  7. if grep -q 'Class 0480:.*1105:8300' /proc/pci; then
  8.   echo "### Setting up DXR3 card ###"
  9.  
  10.   # include module modprobe options
  11.   . /etc/dxr3
  12.  
  13.   # Drivers for DXR3/Hollywood+ cards
  14.   modprobe bt865 2>&1 >/dev/null
  15.   modprobe adv717x $ADV717X_OPTS 2>&1 >/dev/null
  16.   modprobe em8300 $EM8300_OPTS 2>&1 >/dev/null
  17.  
  18.   echo '' > /var/use_dxr3
  19. fi
  20.  
  21. exit 0
  22.